home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Interactive Web Graphics with Shout 3D
/
Interactive Web Graphics With Shout 3D.iso
/
pc
/
Shout3Ddemo
/
Shout3d_runtime
/
codebase
/
applets
/
PyramidTestApplet.java
< prev
next >
Wrap
Text File
|
2000-09-01
|
831b
|
36 lines
/**
Company: Eyematic Interfaces
Project: Shout3D 2.0 Sample Code
Class: PyramidTestApplet
Date: Sep 1, 1999
Description: Class for applet in which you click-drag to scale some pyramids
(C) Copyright Eyematic Interfaces, Inc. - 1997-2000 - All rights reserved
*/
package applets;
import shout3d.*;
/**
* PyramidTestApplet
*
* Shows how custom nodes can be added to Shout3D
* and used in applets.
*
* This applet creates three Pyramid nodes (a custom node in the
* custom_nodes directory) and then changes their fields when
* the user click-drags them.
*
* @author Dave Westwood
* @author Jim Stewartson
* @author Paul Isaacs
*/
public class PyramidTestApplet extends Shout3DApplet {
public void initShout3DPanel(){
panel = new PyramidTestPanel(this);
}
}